@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Prata&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

:root {
    --primary: #ff9f43;
    --secondary: #ee5253;
    --tertiary: #10ac84;
    --green: #78e08f;
    --dark: #181818;
    --light: #ffffff;
    --alt: #f6f6f6;
}

body {
    font-size: 16px;
}

html {
    scroll-behavior: smooth;
}

.font-play {
    font-family: 'Prata', serif;
}

section,
header,
footer,
.pos_center {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.inner_wrapper {
    width: 100%;
    max-width: 1400px;
    padding-left: 1.8rem;
    padding-right: 1.8rem;
}

body p {
    font-size: clamp(0.875rem, 0.875rem + 0.1389vw, 1rem);
}

.text-primary {
    color: var(--primary);
}

.text-secondary {
    color: var(--secondary);
}

.text-tertiary {
    color: var(--tertiary);
}

.text-dark {
    color: var(--dark);
}

.text-light {
    color: var(--light);
}

.text-gradient {
    background: linear-gradient(0deg, var(--primary), var(--secondary));
    background: -webkit-linear-gradient(0deg, var(--primary), var(--secondary));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bg-primary {
    background-color: var(--primary);
}

.bg-secondary {
    background-color: var(--secondary);
}

.bg-tertiary {
    background-color: var(--tertiary);
}

.bg-alt {
    background-color: var(--alt);
}

.bg-dark {
    background-color: var(--dark);
}

.bg-green {
    background-color: var(--green);
}

.transition {
    transition: 0.5s;
}

.absolute-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.dark-overlay {
    position: absolute;
    top: 0%;
    left: 0%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
    width: 100%;
    height: 100%;
}

.dark-overlay-from-b {
    position: absolute;
    top: 0%;
    left: 0%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.688), rgba(0, 0, 0, 0.129));
    width: 100%;
    height: 100%;
}

.lh-title {
    line-height: 1.3 !important;
}

.btn {
    padding: 0.6rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    border-width: 2px;
    border-style: solid;
    transition: 0.4s;
    text-align: center;
}

.btn-s {
    padding: 0.2rem 1.2rem;
    display: flex;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    border-width: 2px;
    border-style: solid;
    transition: 0.4s;
}

.btn:hover {
    transform: translateY(-4px);
}

.btn-primary {
    border-color: var(--primary);
    background-color: var(--primary);
    color: var(--light);
}

.btn-light {
    border-color: var(--light);
    background-color: var(--light);
    color: var(--dark);
}

.btn-light-alt {
    border-color: var(--light);
    background-color: transparent;
    color: var(--light);
}

.btn-dark-alt {
    border-color: var(--dark);
    background-color: transparent;
    color: var(--dark);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--primary);
}

.btn-light:hover {
    background-color: transparent;
    color: var(--light);
}

.btn-light-alt:hover {
    background-color: var(--light);
    color: var(--dark);
}

.btn-dark-alt:hover {
    background-color: var(--dark);
    color: var(--light);
}

.subheading {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.chat-btn-wrap {
    position: fixed;
    bottom: 1rem;
    right: 1rem;
}

.chat-btn {
    padding: 0.8rem 2.4rem;
    border-radius: 99rem;
    background-color: var(--primary);
    color: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.hover-primary {
    transition: 0.2s;
}

.hover-primary:hover {
    color: var(--primary);
}


.nav-link {
    transition: 0.4s;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

/* dropdown */
.header-navigation li {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-navigation li .nav-link {
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-dropdown-wrap {
    position: absolute;
    left: 50%;
    top: 100%;
    transform: translateX(-50%);
    z-index: -5;
    width: 560px;
    transition: 0.4s;
    opacity: 0;
    padding-top: 0rem;
    overflow: hidden;
}

.menu-dropdown {
    background-color: var(--light);
    padding: 1rem;
    text-align: center;
    z-index: 99;
    width: 100%;
    box-shadow: 5px 5px 30px rgba(0, 0, 0, 0.05);
    border-radius: 2px;
    transition: 0.4s;
}

.nav-dropdown:hover .menu-dropdown-wrap {
    z-index: 99;
    opacity: 1;
    padding-top: 0.6rem;
}

.dropdown-link-wrap {
    position: relative;
    padding: 1rem;
    color: var(--light);
    overflow: hidden;
    border-radius: 2px;
}

.menu-dropdown .dropdown-link-wrap::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.2));
    z-index: 2;
}

.dropdown-link-wrap img {
    width: 200px;
    transition: 0.4s;
    position: relative;
}

.dropdown-link-wrap:hover img {
    transform: scale(1.1);
}

.dropdown-link-wrap p {
    position: relative;
    z-index: 3;
    font-size: 14px;
}

#hero {
    /* background: linear-gradient(0deg, rgba(0,0,0,0.4), rgba(0,0,0,0.5)), url('../../images/y-not-india-home-banner-01.jpg') center center no-repeat;
    background-size: cover; */
}

.hero-slider {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


@media (min-width: 766px){
    .hero-content{
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 9;
    }
}

@media (max-width: 766px){
    .hero-content .btn{
        border-color: var(--dark);
        background-color: transparent;
        color: var(--dark);
    }
}

.hero-slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#hero .swiper-button-next, #hero .swiper-button-prev{
    width: 40px;
    height: 40px;
    font-size: 16px;
    background: #fff;
    border-radius: 50%;
    z-index: 99;
}
#hero .swiper-button-next:after, #hero .swiper-button-prev:after{
    font-size: 14px;
    color: var(--dark);
}

@media (max-width: 766px){
    #hero .swiper-button-next, #hero .swiper-button-prev{
        width: 36px;
        height: 36px;
    }
    #hero .swiper-button-next:after, #hero .swiper-button-prev:after{
        font-size: 14px;
    }
}

@media (max-width: 1024px){
    #hero .swiper-button-next, #hero .swiper-button-prev{
        top: 90%;
    }
}

@media (max-width: 766px){
    #hero .swiper-button-next, #hero .swiper-button-prev{
        top: 20%;
    }
}

.hero-overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(0deg, rgba(0,0,0,0.6), rgba(0,0,0,0.6)); */
    z-index: 1;
}

.bg-certificate{
    background: url('../../images/certificates/wooden-bg.png') center center no-repeat;
    background-size: cover;
}
.certificate_col.sm{
    width: 13.6%;
}
.certificate_col.lg{
    width: 25.61%;
}
@media (max-width: 768px){
    .certificate_col.sm{
        width: 100%;
    }
    .certificate_col.lg{
        width: 100%;
    }
}

.autoplay-progress {
    position: absolute;
    right: 16px;
    bottom: 16px;
    z-index: 10;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: var(--primary);
    z-index: 2;
}

.autoplay-progress svg {
    --progress: 0;
    position: absolute;
    left: 0;
    top: 0px;
    z-index: 10;
    width: 100%;
    height: 100%;
    stroke-width: 4px;
    stroke: var(--swiper-theme-color);
    fill: none;
    stroke-dashoffset: calc(125.6 * (1 - var(--progress)));
    stroke-dasharray: 125.6;
    transform: rotate(-90deg);
}

#our-story {
    /* background: url('../../images/y-not-india-bag-14.jpg') center center no-repeat;
    background-size: cover; */
}

.category-card {
    position: relative;
    display: flex;
    align-items: center;
    flex-flow: column;
    overflow: hidden;
    border-radius: 6px;
    box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.125);
}

.category-card .card-img {
    /* position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; */
    object-fit: cover;
    transition: 0.5s;
    margin-bottom: 1.6rem;
}

.category-card:hover .card-img {
    transform: scale(1) translateY(-8px);
}

.category-card-info {
    position: absolute;
    left: 50%;
    bottom: 0rem;
    transform: translateX(-50%);
    color: var(--dark);
    text-align: center;
    white-space: nowrap;
}

/* product page css */
.product-badge {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
}

.product-card {
    position: relative;
    border: 2px solid #c5c5c5;
    border-radius: 2px;
}

.product-zoom {
    position: absolute;
    top: 0.6rem;
    right: 1rem;
}

.product-zoom i {
    opacity: 0.5;
}

.yt_player_wrap{
    position: relative;
    padding-bottom: 56%;
}
.yt_player{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Product popup */
.product-popup-wrap {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    z-index: -9;
    opacity: 0;
    transition: 0.5s;
}

.product-popup-wrap.active {
    z-index: 99999;
    opacity: 1;
}

.product-popup-wrap .product-popup {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -30%);
    background-color: var(--light);
    max-width: 90vw;
    max-height: 90vh;
    border-radius: 4px;
    z-index: 10;
    transition: 0.5s;
}

.product-popup-wrap.active .product-popup {
    transform: translate(-50%, -50%);
}

.product-popup-wrap .product-popup img {
    width: auto;
}

/* certificate popup */
.cert-popup-wrap {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    z-index: -9;
    opacity: 0;
    transition: 0.5s;
}

.cert-popup-wrap.active {
    z-index: 99999;
    opacity: 1;
}

.cert-popup-wrap .cert-popup {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -30%);
    background-color: var(--light);
    max-width: 90vw;
    max-height: 90vh;
    border-radius: 4px;
    z-index: 10;
    transition: 0.5s;
}

@media (max-width: 768px){
    .cert-popup-wrap .cert-popup{
        width: 100%;
    }
}

.cert-popup-wrap.active .cert-popup {
    transform: translate(-50%, -50%);
}

.cert-popup-wrap .cert-popup img {
    width: auto;
    max-height: 90vh;
}

.backdrop {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
}

.popup-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: var(--light);
}

/* Form */
.input_wrap label {
    display: inline-block;
    margin-bottom: 6px;
}

.input_wrap {
    margin-bottom: 2rem;
}

.input-control {
    padding: 1rem 1.2rem;
    width: 100%;
    background-color: var(--alt);
}

.input-err-txt {
    font-size: 12px;
    color: #ee5253;
    transition: 0.4s;
    margin-top: 4px;
}

/* Privacy */
#privacy h2,
#privacy h3,
#privacy h4,
#privacy h5,
#privacy h6 {
    margin-top: 2rem;
    margin-bottom: 1.6rem;
    font-weight: 600;
}

#privacy h2 {
    font-size: 2rem;
}

#privacy h3,
#privacy h4,
#privacy h5,
#privacy h6 {
    font-size: 1.6rem;
}

#privacy p,
#privacy li {
    margin-bottom: 1.4rem;
}

#privacy li {
    transform: translateX(1rem);
}

#privacy li {
    list-style: disc;
}

#privacy a {
    color: var(--primary);
}

/* International fair */
#international-fair {
    /* background: url('../../images/international-fair-banner.jpg') center center no-repeat;
    background-size: cover; */
}
.hero-center-container{
    position: absolute !important;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}
.section--bg-img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (min-width: 768px){
    .hero-center-container-sm{
        position: absolute !important;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 2;
    }
}

@media (max-width: 1024px) {
    .header-navigation-wrap {
        position: absolute;
    }

    .header-navigation {
        position: fixed;
        top: 0;
        right: -42vw;
        width: 40vw;
        height: 100vh;
        background: var(--dark);
        transition: 0.4s;
        z-index: 99;
    }

    .header-navigation ul {
        width: 100%;
    }

    .header-navigation li {
        display: flex;
        height: auto;
        width: 100%;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .header-navigation.active {
        right: 0;
    }

    .menu-close {
        position: absolute;
        top: 1rem;
        right: 1rem;
        transition: 0.4s;
    }

    .menu-close:hover {
        transform: scale(0.9);
    }

    .menu-dropdown-wrap {
        position: relative;
        left: 0;
        top: 0;
        transform: translateX(0);
        z-index: 2;
        width: 100%;
        opacity: 0;
        padding-top: 0rem;
        height: 0;
    }

    .nav-dropdown:hover .menu-dropdown-wrap {
        opacity: 1;
        padding-top: 1rem;
        height: auto;
    }

    .menu-dropdown {
        padding: 0.5rem;
    }
}

@media (max-width: 768px) {
    .inner_wrapper {
        padding-left: 1.2rem;
        padding-right: 1.2rem;
    }

    @media (max-width: 1024px) {
        .header-navigation {
            right: -62vw;
            width: 60vw;
        }
    }
}

@media (max-width: 480px) {
    .header-navigation {
        right: -102vw;
        width: 100vw;
    }

    .chat-btn {
        font-size: 13px;
    }

    .product-popup-wrap .product-popup {
        width: 100%;
    }

    .product-popup-wrap .product-popup img {
        width: 100%;
    }

    #privacy h2 {
        font-size: 1.6rem;
    }

    #privacy h3,
    #privacy h4,
    #privacy h5,
    #privacy h6 {
        font-size: 1rem;
    }
}